home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2001 May / macformat_103_may_2001.iso / Shareware / Utilities / MacGhostView Folder / ghostscript / gs6.01 / lib / pdf2ps < prev    next >
Encoding:
Text File  |  2000-11-21  |  495 b   |  22 lines  |  [TEXT/R*ch]

  1. #!/bin/sh
  2. # $Id: pdf2ps,v 1.1 2000/03/09 08:40:40 lpd Exp $
  3. # Convert PDF to PostScript.
  4.  
  5. OPTIONS=""
  6. while true
  7. do
  8.     case "$1" in
  9.     -*) OPTIONS="$OPTIONS $1" ;;
  10.     *)  break ;;
  11.     esac
  12.     shift
  13. done
  14.  
  15. if [ $# -ne 2 ]; then
  16.     echo "Usage: `basename $0` [-dASCII85EncodePages=false] [-dLanguageLevel=n] input.pdf output.ps" 1>&2
  17.     exit 1
  18. fi
  19.  
  20. # Doing an initial 'save' helps keep fonts from being flushed between pages.
  21. exec gs -q -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=$2 $OPTIONS -c save pop -f $1
  22.